home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ReadWriteStringEx.wo / ReadWriteStringEx.wod < prev    next >
Encoding:
Text File  |  1996-03-11  |  442 b   |  23 lines

  1. ////////////////////////
  2. //  ReadWriteString
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. MyReadWriteString: ReadWriteString {
  7.     value = aString;
  8.     isEditable = isEditable;
  9. };
  10.  
  11. SetEditableButton: WOSubmitButton {
  12.     action = toggleEditable;
  13.     value = buttonString;
  14. };
  15.  
  16. ComponentDescription: ComponentDescription {
  17.     componentName = "ReadWriteString";
  18. };
  19.  
  20. ShowSourceControls: ShowSource {
  21.     componentName = "ReadWriteString";
  22. }; 
  23.